- /* scfexpbs.cpp by K.Tsuru */
- // function ID = 9121
- /*************************************************
- SComplex class
- Let z = x+i*y.
- It returns exp(x+i*y) = exp(x)*{cos(y)+i*sin(y)}
- using binary splitting.
- **************************************************/
- #ifndef SN_H
- #include "sn.h"
- #endif
- SComplex CexpBS(const SComplex& z){
- SDouble r = ExpBS(z.Real());
- return CpolarBS(r, z.Imag());
- }
scfexpbs.cpp : last modifiled at 2015/07/26 15:34:25(411 bytes)
created at 2017/10/06 15:21:28
The creation time of this html file is 2017/10/06 15:27:09 (Fri Oct 06 15:27:09 2017).